home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / bin / onboard < prev    next >
Text File  |  2009-10-12  |  387b  |  16 lines

  1. #!/usr/bin/python
  2. # -*- coding: UTF-8 -*-
  3.  
  4. __copyright__ = "Copyright ⌐ 2009 Chris Jones"
  5. __author__    = "Chris Jones <chrisejones@gmail.com>"
  6.  
  7. import sys
  8.  
  9. # Replace the default exception handler with one which handles chained
  10. # exceptions.
  11. from Onboard.Exceptions import chain_handler
  12. sys.excepthook = chain_handler
  13.  
  14. from Onboard.OnboardGtk import OnboardGtk as Onboard
  15. ob = Onboard()
  16.